home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 090 / ckrem100.arc / CHKREMOT.ASM next >
Assembly Source File  |  1987-04-16  |  792b  |  30 lines

  1. PAGE ,132
  2. TITLE Check for Remote Console Utility, Version 1.00
  3.  
  4. CODE      SEGMENT BYTE
  5.  
  6.           ASSUME  CS:CODE,DS:CODE
  7.  
  8.           ORG     100H
  9.  
  10. START:    JMP     SHORT BEGIN
  11.  
  12.           DB      13,"Check for Remote Console Utility, Version 1.00",13,10
  13.           DB      "SMG Software",13,10
  14.           DB      "(C) Copyright 1987 Steve Georgiades",13,10,1AH
  15.  
  16. BEGIN:    MOV     AX,4400H                      ; Get IOCTL for STDIN
  17.           XOR     BX,BX
  18.           INT     21H
  19.           AND     DL,10H                        ; Extract Key Bit
  20.           XOR     DL,10H
  21.           MOV     CL,4
  22.           SHR     DL,CL
  23.           MOV     AL,DL
  24.           MOV     AH,4CH                        ; Exit to DOS
  25.           INT     21H
  26.  
  27. CODE      ENDS
  28.  
  29.           END     START
  30.